home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / lib / libXrr.h < prev    next >
C/C++ Source or Header  |  1995-05-03  |  1KB  |  32 lines

  1. /*************************************************************************
  2.  *                                                                       *
  3.  *  Copyright (c) 1992, 1993 Ronald Joe Record                           *
  4.  *                                                                       *
  5.  *  All rights reserved. No part of this program or publication may be   *
  6.  *  reproduced, transmitted, transcribed, stored in a retrieval system,  *
  7.  *  or translated into any language or computer language, in any form or *
  8.  *  by any means, electronic, mechanical, magnetic, optical, chemical,   *
  9.  *  biological, or otherwise, without the prior written permission of:   *
  10.  *                                                                       *
  11.  *      Ronald Joe Record (408) 458-3718                                 *
  12.  *      212 Owen St., Santa Cruz, California 95062 USA                   *
  13.  *                                                                       *
  14.  *************************************************************************/
  15.  
  16. #ifndef LIBXRR_H
  17.  
  18. #include <X11/Xlib.h>
  19.  
  20. #define MAXWHEELS 16
  21. #define RGB_MAX 65000
  22. #define MAXPOINTS  1024
  23. #define MAXCOLOR 256
  24.  
  25. typedef struct points_t {
  26.     XPoint data[MAXCOLOR][MAXPOINTS];
  27.     int npoints[MAXCOLOR];
  28.     } points_t;
  29.  
  30. #define LIBXRR_H
  31. #endif
  32.